My question is regarding Dendron paste image exten...
# questions
h
My question is regarding Dendron paste image extension I wanted to create a separate folder for images (in
assets
) for each note. This helps to remove cluttering of images and also easy to preview in other markdown apps. What I did I configured the dendron.code-workspace settings as:
Copy code
json
"settings": {
    "pasteImage.defaultName": "YMMDDHHmmss",
    "pasteImage.path": "${currentFileDir}/assets/images/${currentFileNameWithoutExt}",
    "pasteImage.prefix": "/",
    "pasteImage.insertPattern": "![${imageFileNameWithoutExt}](.${imageFilePath})",
}
What I expected Yesterday, the paste command worked as per workspace settings. With OPT+CMD+V, I was able to paste the image along with the name and path as intended.
![20220518230629](./assets/images/first-note/20220518230629.png)
What I got But, Today when I did the same paste command for a screenshot, it saved the image as
![](20220519150629.png)
What I tried I tried to reload window, reload index, disable/enable paste image extension but no success. Meanwhile, I did an Dendron update to v0.95.1 today Has anyone experienced this issue? Is it a bug or am I missing something? 
 Thanks
3 Views